...unless it's needed.
textview border {
background-color: mix($bg_color, $base_color, 50%);
- background-image: _solid(transparentize(black, 0.8)); // HACK: the border node just draws background so,
+ background-image: image(transparentize(black, 0.8)); // HACK: the border node just draws background so,
background-repeat: no-repeat; // using a background-image to draw the border
&:backdrop { background-color: mix($backdrop_bg_color, $backdrop_base_color, 50%); }
.selection-menu {
&:backdrop, & {
border-color: transparentize($selected_bg_color, 1);
- background-image: _solid(transparentize($selected_bg_color, 1));
+ background-color: transparentize($selected_bg_color, 1);
+ background-image: none;
box-shadow: none;
padding-left: 10px;
padding-right: 10px;
border-color: darken($osd_borders_color, 3%);
background-color: opacify($osd_bg_color, 1); // solid background needed here
- &:hover { @include button(osd-hover); }
+ &:hover {
+ @include button(osd-hover);
+ background-color: opacify($osd_bg_color, 1); // solid background needed here
+ }
- &:active { @include button(osd-active); }
+ &:active {
+ @include button(osd-active);
+ background-color: opacify($osd_bg_color, 1); // solid background needed here
+ }
- &:disabled { @include button(osd-insensitive); }
+ &:disabled {
+ @include button(osd-insensitive);
+ background-color: opacify($osd_bg_color, 1); // solid background needed here
+ }
&:backdrop {
@include button(osd-backdrop);
+ background-color: opacify($osd_bg_color, 1); // solid background needed here
- &:disabled { @include button(osd-backdrop-insensitive); }
+ &:disabled {
+ @include button(osd-backdrop-insensitive);
+ background-color: opacify($osd_bg_color, 1); // solid background needed here
+ }
}
}
}
min-width: 0;
trough {
- background-image: _solid($borders_color);
+ background-image: image($borders_color);
background-repeat: no-repeat;
}
&.sidebar-placeholder-row {
padding: 0 8px;
min-height: 2px;
- background-image: _solid($drop_target_color);
+ background-image: image($drop_target_color);
background-clip: content-box;
}
border-style: none; // just to be sure
background-color: transparent;
// workaround, using background istead of a border since the border will get rendered twice (?)
- background-image: _solid($borders_color);
+ background-image: image($borders_color);
background-size: 1px 1px;
- &:selected { background-image: _solid($selected_bg_color); } // FIXME is this needed?
+ &:selected { background-image: image($selected_bg_color); } // FIXME is this needed?
- &:backdrop { background-image: _solid($backdrop_borders_color); }
+ &:backdrop { background-image: image($backdrop_borders_color); }
&.wide {
min-width: 5px;
min-height: 5px;
background-color: $bg_color;
- background-image: _solid($borders_color), _solid($borders_color);
+ background-image: image($borders_color), image($borders_color);
background-size: 1px 1px, 1px 1px;
&:backdrop {
background-color: $backdrop_bg_color;
- background-image: _solid($backdrop_borders_color),
- _solid($backdrop_borders_color);
+ background-image: image($backdrop_borders_color),
+ image($backdrop_borders_color);
}
}
}
@else { @return 0 1px $c; }
}
-@function _solid($c) {
-// solid color image
- @return linear-gradient(to bottom, $c, $c);
-}
-
@mixin _shadows($list...) {
//
// Helper mixin to stack up to box-shadows;
color: $tc;
outline-color: transparentize($tc, 0.7);
border-color: if($c!=$bg_color, _border_color($c), $borders_color);
- @if $variant == 'light' { background-image: _solid(darken($c, 8%)); }
- @else { background-image: _solid(darken($c, 6%)); }
+ background-image: none;
+ @if $variant == 'light' { background-color: darken($c, 8%); }
+ @else { background-color: darken($c, 6%); }
@include _shadows(inset 0 1px transparentize($_hilight_color, 1),
$_button_edge);
border-color: if($c!=$bg_color, _border_color($c),
$insensitive_borders_color);
- background-image: _solid($_bg);
+ background-color: $_bg;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
// white with 0 alpha to avoid an ugly transition, since no color means
label, & { color: if($tc!=$fg_color,mix($tc, $_bg, 80%), $backdrop_fg_color); }
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
- background-image: _solid($_bg);
+ background-color: $_bg;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
@include _shadows(inset 0 1px transparentize(white, 1),
label, & { color: if($tc!=$fg_color, mix($tc, $_bg, 80%), $backdrop_fg_color); }
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
- background-image: _solid($_bg);
+ background-color: $_bg;
+ background-image: none;
@include _shadows(inset 0 1px transparentize(white, 1),
$_blank_edge);
}
label, & { color: if($c!=$bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color); }
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
- background-image: _solid($_bg);
+ background-color: $_bg;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
// white with 0 alpha to avoid an ugly transition, since no color means
label { color: if($c!=$bg_color, mix($tc, $_bg, 35%), $backdrop_insensitive_color); }
border-color: if($c!=$bg_color, $_bc, $backdrop_borders_color);
- background-image: _solid($_bg);
+ background-color: $_bg;
+ background-image: none;
@include _shadows(inset 0 1px transparentize(white, 1),
$_blank_edge);
}
color: $osd_fg_color;
border-color: $osd_borders_color;
- background-image: _solid($_bg);
+ background-color: transparent;
+ background-image: image($_bg);
background-clip: padding-box;
box-shadow: inset 0 1px transparentize(white, 0.9);
text-shadow: 0 1px black;
color: white;
border-color: $osd_borders_color;
- background-image: _solid($_bg);
+ background-color: transparent;
+ background-image: image($_bg);
background-clip: padding-box;
box-shadow: inset 0 1px transparentize(white, 0.9);
text-shadow: 0 1px black;
color: white;
border-color: $osd_borders_color;
- background-image: _solid($_bg);
+ background-color: transparent;
+ background-image: image($_bg);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
//
color: $osd_insensitive_fg_color;
border-color: $osd_borders_color;
- background-image: _solid($osd_insensitive_bg_color);
+ background-color: transparent;
+ background-image: image($osd_insensitive_bg_color);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: $osd_fg_color;
border-color: $osd_borders_color;
- background-image: _solid($_bg);
+ background-color: transparent;
+ background-image: image($_bg);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
textview border {
background-color: #313434;
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
+ background-image: image(rgba(0, 0, 0, 0.2));
background-repeat: no-repeat; }
textview border:backdrop {
background-color: #333636; }
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #212424;
- background-image: linear-gradient(to bottom, #2a2f2f, #2a2f2f);
+ background-image: none;
+ background-color: #2a2f2f;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none;
button:backdrop.flat,
button:backdrop {
border-color: #262929;
- background-image: linear-gradient(to bottom, #393f3f, #393f3f);
+ background-color: #393f3f;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
button:backdrop:active,
button:backdrop:checked {
border-color: #262929;
- background-image: linear-gradient(to bottom, #323737, #323737);
+ background-color: #323737;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
notebook > header > tabs > arrow:backdrop:active label, button.sidebar-button:backdrop:active label, button.titlebutton:backdrop:active label, notebook > header > tabs > arrow:backdrop:active, button.sidebar-button:backdrop:active, button.titlebutton:backdrop:active, notebook > header > tabs > arrow:backdrop:checked label, button.sidebar-button:backdrop:checked label, button.titlebutton:backdrop:checked label, notebook > header > tabs > arrow:backdrop:checked, button.sidebar-button:backdrop:checked, button.titlebutton:backdrop:checked, notebook > header > tabs > arrow:backdrop:active label, button.titlebutton:backdrop:active label, notebook > header > tabs > arrow:backdrop:active, button.titlebutton:backdrop:active, notebook > header > tabs > arrow:backdrop:checked label, button.titlebutton:backdrop:checked label, notebook > header > tabs > arrow:backdrop:checked, button.titlebutton:backdrop:checked,
button:backdrop.flat:active label,
button:backdrop.flat:disabled,
button:backdrop:disabled {
border-color: #262929;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button:backdrop:disabled:active,
button:backdrop:disabled:checked {
border-color: #262929;
- background-image: linear-gradient(to bottom, #272929, #272929);
+ background-color: #272929;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
notebook > header > tabs > arrow:backdrop:disabled:active label, button.sidebar-button:backdrop:disabled:active label, button.titlebutton:backdrop:disabled:active label, notebook > header > tabs > arrow:backdrop:disabled:checked label, button.sidebar-button:backdrop:disabled:checked label, button.titlebutton:backdrop:disabled:checked label, notebook > header > tabs > arrow:backdrop:disabled:active label, button.titlebutton:backdrop:disabled:active label, notebook > header > tabs > arrow:backdrop:disabled:checked label, button.titlebutton:backdrop:disabled:checked label,
button:backdrop.flat:disabled:active label,
notebook > header > tabs > arrow:disabled, button.titlebutton:disabled,
button:disabled {
border-color: #212424;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
outline-color: rgba(238, 238, 236, 0.3);
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.osd:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.osd:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.osd:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.osd:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.flat:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.flat:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.flat:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #1b4e83, #1b4e83);
+ background-image: none;
+ background-color: #1b4e83;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
button.suggested-action:backdrop,
button.suggested-action.flat:backdrop {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #215d9c, #215d9c);
+ background-color: #215d9c;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.suggested-action.flat:backdrop:active,
button.suggested-action.flat:backdrop:checked {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #184472, #184472);
+ background-color: #184472;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.selection-mode button.titlebutton:backdrop:active label, .selection-mode button.titlebutton:backdrop:active, .selection-mode button.titlebutton:backdrop:checked label, .selection-mode button.titlebutton:backdrop:checked,
button.suggested-action:backdrop:active label,
button.suggested-action:backdrop:disabled,
button.suggested-action.flat:backdrop:disabled {
border-color: #262929;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.suggested-action.flat:backdrop:disabled:active,
button.suggested-action.flat:backdrop:disabled:checked {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #1d4877, #1d4877);
+ background-color: #1d4877;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.selection-mode button.titlebutton:backdrop:disabled:active label, .selection-mode button.titlebutton:backdrop:disabled:checked label,
button.suggested-action:backdrop:disabled:active label,
color: rgba(33, 93, 156, 0.8); }
button.suggested-action:disabled {
border-color: #212424;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.suggested-action {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(33, 93, 156, 0.5), rgba(33, 93, 156, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(33, 93, 156, 0.5));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.suggested-action:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(33, 93, 156, 0.7), rgba(33, 93, 156, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(33, 93, 156, 0.7));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.suggested-action:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, #215d9c, #215d9c);
+ background-color: transparent;
+ background-image: image(#215d9c);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.suggested-action:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.suggested-action:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(33, 93, 156, 0.5), rgba(33, 93, 156, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(33, 93, 156, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #760909;
- background-image: linear-gradient(to bottom, #b90e0e, #b90e0e);
+ background-image: none;
+ background-color: #b90e0e;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
button.destructive-action:backdrop,
button.destructive-action.flat:backdrop {
border-color: #760909;
- background-image: linear-gradient(to bottom, #d51010, #d51010);
+ background-color: #d51010;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action.flat:backdrop:active,
button.destructive-action.flat:backdrop:checked {
border-color: #760909;
- background-image: linear-gradient(to bottom, #a60c0c, #a60c0c);
+ background-color: #a60c0c;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action:backdrop:active label,
button.destructive-action:backdrop:active,
button.destructive-action:backdrop:disabled,
button.destructive-action.flat:backdrop:disabled {
border-color: #262929;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action.flat:backdrop:disabled:active,
button.destructive-action.flat:backdrop:disabled:checked {
border-color: #760909;
- background-image: linear-gradient(to bottom, #a41212, #a41212);
+ background-color: #a41212;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action:backdrop:disabled:active label,
button.destructive-action:backdrop:disabled:checked label,
color: rgba(213, 16, 16, 0.8); }
button.destructive-action:disabled {
border-color: #212424;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(213, 16, 16, 0.5), rgba(213, 16, 16, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(213, 16, 16, 0.5));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.destructive-action:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(213, 16, 16, 0.7), rgba(213, 16, 16, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(213, 16, 16, 0.7));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.destructive-action:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, #d51010, #d51010);
+ background-color: transparent;
+ background-image: image(#d51010);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.destructive-action:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.destructive-action:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(213, 16, 16, 0.5), rgba(213, 16, 16, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(213, 16, 16, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #212424;
- background-image: linear-gradient(to bottom, #2a2f2f, #2a2f2f);
+ background-image: none;
+ background-color: #2a2f2f;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
.inline-toolbar toolbutton > button:disabled {
border-color: #212424;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #949796; }
.inline-toolbar toolbutton > button:backdrop {
border-color: #262929;
- background-image: linear-gradient(to bottom, #393f3f, #393f3f);
+ background-color: #393f3f;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #949796; }
.inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked {
border-color: #262929;
- background-image: linear-gradient(to bottom, #323737, #323737);
+ background-color: #323737;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.inline-toolbar toolbutton > button:backdrop:active label, .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked label, .inline-toolbar toolbutton > button:backdrop:checked {
color: #949796; }
.inline-toolbar toolbutton > button:backdrop:disabled {
border-color: #262929;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #5d6767; }
.inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked {
border-color: #262929;
- background-image: linear-gradient(to bottom, #272929, #272929);
+ background-color: #272929;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.inline-toolbar toolbutton > button:backdrop:disabled:active label, .inline-toolbar toolbutton > button:backdrop:disabled:checked label {
color: #5d6767; }
.osd spinbutton.vertical button:first-child {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
.osd spinbutton.vertical button:first-child:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
.osd spinbutton.vertical button:first-child:active {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
.osd spinbutton.vertical button:first-child:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
.osd spinbutton.vertical button:first-child:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #1b4e83, #1b4e83);
+ background-image: none;
+ background-color: #1b4e83;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
headerbar.selection-mode button:backdrop.flat,
headerbar.selection-mode button:backdrop {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #215d9c, #215d9c);
+ background-color: #215d9c;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
headerbar.selection-mode button:backdrop:active,
headerbar.selection-mode button:backdrop:checked {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #184472, #184472);
+ background-color: #184472;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
border-color: #0f2b48; }
.selection-mode.titlebar:not(headerbar) button:backdrop.flat:active label, .selection-mode.titlebar:not(headerbar) button:backdrop.flat:active, .selection-mode.titlebar:not(headerbar) button:backdrop.flat:checked label, .selection-mode.titlebar:not(headerbar) button:backdrop.flat:checked, .selection-mode.titlebar:not(headerbar) button:backdrop:active label, .selection-mode.titlebar:not(headerbar) button:backdrop:active, .selection-mode.titlebar:not(headerbar) button:backdrop:checked label, .selection-mode.titlebar:not(headerbar) button:backdrop:checked,
headerbar.selection-mode button:backdrop.flat:disabled,
headerbar.selection-mode button:backdrop:disabled {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #22558b, #22558b);
+ background-color: #22558b;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
headerbar.selection-mode button:backdrop:disabled:active,
headerbar.selection-mode button:backdrop:disabled:checked {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #1d4877, #1d4877);
+ background-color: #1d4877;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
border-color: #0f2b48; }
.selection-mode.titlebar:not(headerbar) button:backdrop.flat:disabled:active label, .selection-mode.titlebar:not(headerbar) button:backdrop.flat:disabled:checked label, .selection-mode.titlebar:not(headerbar) button:backdrop:disabled:active label, .selection-mode.titlebar:not(headerbar) button:backdrop:disabled:checked label,
.selection-mode.titlebar:not(headerbar) button:disabled,
headerbar.selection-mode button:disabled {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #22558b, #22558b);
+ background-color: #22558b;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #212424;
- background-image: linear-gradient(to bottom, #2a2f2f, #2a2f2f);
+ background-image: none;
+ background-color: #2a2f2f;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none;
.selection-mode.titlebar:not(headerbar) button.suggested-action:disabled,
headerbar.selection-mode button.suggested-action:disabled {
border-color: #212424;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
.selection-mode.titlebar:not(headerbar) button.suggested-action:backdrop,
headerbar.selection-mode button.suggested-action:backdrop {
border-color: #262929;
- background-image: linear-gradient(to bottom, #393f3f, #393f3f);
+ background-color: #393f3f;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
.selection-mode.titlebar:not(headerbar) button.suggested-action:backdrop:disabled,
headerbar.selection-mode button.suggested-action:backdrop:disabled {
border-color: #262929;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
headerbar.selection-mode .selection-menu:backdrop,
headerbar.selection-mode .selection-menu {
border-color: rgba(33, 93, 156, 0);
- background-image: linear-gradient(to bottom, rgba(33, 93, 156, 0), rgba(33, 93, 156, 0));
+ background-color: rgba(33, 93, 156, 0);
+ background-image: none;
box-shadow: none;
padding-left: 10px;
padding-right: 10px; }
border: 1px solid #0f2b48; }
switch:disabled slider {
border-color: #212424;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
switch:backdrop slider {
transition: 200ms ease-out;
border-color: #262929;
- background-image: linear-gradient(to bottom, #393f3f, #393f3f);
+ background-color: #393f3f;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
border-color: #0f2b48; }
switch:backdrop:disabled slider {
border-color: #262929;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #eeeeec;
outline-color: rgba(238, 238, 236, 0.3);
border-color: #212424;
- background-image: linear-gradient(to bottom, #2a2f2f, #2a2f2f);
+ background-image: none;
+ background-color: #2a2f2f;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
check:disabled,
radio:disabled {
border-color: #212424;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
check:backdrop,
radio:backdrop {
border-color: #262929;
- background-image: linear-gradient(to bottom, #393f3f, #393f3f);
+ background-color: #393f3f;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
check:backdrop:disabled,
radio:backdrop:disabled {
border-color: #262929;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
radio {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
radio:hover {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
radio:active {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
radio:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
radio:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
border-color: #0f2b48; }
scale slider:disabled {
border-color: #212424;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
scale slider:backdrop {
transition: 200ms ease-out;
border-color: #262929;
- background-image: linear-gradient(to bottom, #393f3f, #393f3f);
+ background-color: #393f3f;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #949796; }
scale slider:backdrop:disabled {
border-color: #262929;
- background-image: linear-gradient(to bottom, #333636, #333636);
+ background-color: #333636;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.osd scale slider {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
.osd scale slider:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
-gtk-icon-shadow: 0 1px black;
- outline-color: rgba(238, 238, 236, 0.3); }
+ outline-color: rgba(238, 238, 236, 0.3);
+ background-color: #202526; }
.osd scale slider:active {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
-gtk-icon-shadow: none;
- outline-color: rgba(238, 238, 236, 0.3); }
+ outline-color: rgba(238, 238, 236, 0.3);
+ background-color: #202526; }
.osd scale slider:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
- -gtk-icon-shadow: none; }
+ -gtk-icon-shadow: none;
+ background-color: #202526; }
.osd scale slider:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
- -gtk-icon-shadow: none; }
+ -gtk-icon-shadow: none;
+ background-color: #202526; }
+ .osd scale slider:backdrop:disabled {
+ background-color: #202526; }
scale value {
color: alpha(currentColor,0.55); }
scale marks {
min-height: 0;
min-width: 0; }
scale.color trough {
- background-image: linear-gradient(to bottom, #212424, #212424);
+ background-image: image(#212424);
background-repeat: no-repeat; }
scale.color.horizontal {
padding: 0 0 15px 0; }
placessidebar row.sidebar-placeholder-row {
padding: 0 8px;
min-height: 2px;
- background-image: linear-gradient(to bottom, #4e9a06, #4e9a06);
+ background-image: image(#4e9a06);
background-clip: content-box; }
placessidebar row.sidebar-new-bookmark-row {
color: #215d9c; }
-gtk-icon-source: none;
border-style: none;
background-color: transparent;
- background-image: linear-gradient(to bottom, #212424, #212424);
+ background-image: image(#212424);
background-size: 1px 1px; }
paned > separator:selected {
- background-image: linear-gradient(to bottom, #215d9c, #215d9c); }
+ background-image: image(#215d9c); }
paned > separator:backdrop {
- background-image: linear-gradient(to bottom, #262929, #262929); }
+ background-image: image(#262929); }
paned > separator.wide {
min-width: 5px;
min-height: 5px;
background-color: #393f3f;
- background-image: linear-gradient(to bottom, #212424, #212424), linear-gradient(to bottom, #212424, #212424);
+ background-image: image(#212424), image(#212424);
background-size: 1px 1px, 1px 1px; }
paned > separator.wide:backdrop {
background-color: #393f3f;
- background-image: linear-gradient(to bottom, #262929, #262929), linear-gradient(to bottom, #262929, #262929); }
+ background-image: image(#262929), image(#262929); }
paned.horizontal > separator {
background-repeat: repeat-y; }
paned.horizontal > separator:dir(ltr) {
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #1b4e83, #1b4e83);
+ background-image: none;
+ background-color: #1b4e83;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
.warning button:disabled,
.error button:disabled {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #22558b, #22558b);
+ background-color: #22558b;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.warning button:backdrop,
.error button:backdrop {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #215d9c, #215d9c);
+ background-color: #215d9c;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
.warning button:backdrop:disabled,
.error button:backdrop:disabled {
border-color: #0f2b48;
- background-image: linear-gradient(to bottom, #22558b, #22558b);
+ background-color: #22558b;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); }
colorswatch#add-color-button overlay:backdrop {
border-color: #262929;
- background-image: linear-gradient(to bottom, #393f3f, #393f3f);
+ background-color: #393f3f;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
textview border {
background-color: #f4f4f3;
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
+ background-image: image(rgba(0, 0, 0, 0.2));
background-repeat: no-repeat; }
textview border:backdrop {
background-color: #f2f2f2; }
color: #2e3436;
outline-color: rgba(46, 52, 54, 0.3);
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #d4d4d2, #d4d4d2);
+ background-image: none;
+ background-color: #d4d4d2;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none;
button:backdrop.flat,
button:backdrop {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e8e8e7, #e8e8e7);
+ background-color: #e8e8e7;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
button:backdrop:active,
button:backdrop:checked {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #dadad8, #dadad8);
+ background-color: #dadad8;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
notebook > header > tabs > arrow:backdrop:active label, button.sidebar-button:backdrop:active label, button.titlebutton:backdrop:active label, notebook > header > tabs > arrow:backdrop:active, button.sidebar-button:backdrop:active, button.titlebutton:backdrop:active, notebook > header > tabs > arrow:backdrop:checked label, button.sidebar-button:backdrop:checked label, button.titlebutton:backdrop:checked label, notebook > header > tabs > arrow:backdrop:checked, button.sidebar-button:backdrop:checked, button.titlebutton:backdrop:checked, notebook > header > tabs > arrow:backdrop:active label, button.titlebutton:backdrop:active label, notebook > header > tabs > arrow:backdrop:active, button.titlebutton:backdrop:active, notebook > header > tabs > arrow:backdrop:checked label, button.titlebutton:backdrop:checked label, notebook > header > tabs > arrow:backdrop:checked, button.titlebutton:backdrop:checked,
button:backdrop.flat:active label,
button:backdrop.flat:disabled,
button:backdrop:disabled {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button:backdrop:disabled:active,
button:backdrop:disabled:checked {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e4e4e4, #e4e4e4);
+ background-color: #e4e4e4;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
notebook > header > tabs > arrow:backdrop:disabled:active label, button.sidebar-button:backdrop:disabled:active label, button.titlebutton:backdrop:disabled:active label, notebook > header > tabs > arrow:backdrop:disabled:checked label, button.sidebar-button:backdrop:disabled:checked label, button.titlebutton:backdrop:disabled:checked label, notebook > header > tabs > arrow:backdrop:disabled:active label, button.titlebutton:backdrop:disabled:active label, notebook > header > tabs > arrow:backdrop:disabled:checked label, button.titlebutton:backdrop:disabled:checked label,
button:backdrop.flat:disabled:active label,
notebook > header > tabs > arrow:disabled, button.titlebutton:disabled,
button:disabled {
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
outline-color: rgba(238, 238, 236, 0.3);
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.osd:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.osd:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.osd:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.osd:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.flat:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.flat:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.flat:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #215d9c;
- background-image: linear-gradient(to bottom, #2b7bcf, #2b7bcf);
+ background-image: none;
+ background-color: #2b7bcf;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
button.suggested-action:backdrop,
button.suggested-action.flat:backdrop {
border-color: #4a90d9;
- background-image: linear-gradient(to bottom, #4a90d9, #4a90d9);
+ background-color: #4a90d9;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.suggested-action.flat:backdrop:active,
button.suggested-action.flat:backdrop:checked {
border-color: #2a76c6;
- background-image: linear-gradient(to bottom, #2a76c6, #2a76c6);
+ background-color: #2a76c6;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.selection-mode button.titlebutton:backdrop:active label, .selection-mode button.titlebutton:backdrop:active, .selection-mode button.titlebutton:backdrop:checked label, .selection-mode button.titlebutton:backdrop:checked,
button.suggested-action:backdrop:active label,
button.suggested-action:backdrop:disabled,
button.suggested-action.flat:backdrop:disabled {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.suggested-action.flat:backdrop:disabled:active,
button.suggested-action.flat:backdrop:disabled:checked {
border-color: #5094db;
- background-image: linear-gradient(to bottom, #5094db, #5094db);
+ background-color: #5094db;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.selection-mode button.titlebutton:backdrop:disabled:active label, .selection-mode button.titlebutton:backdrop:disabled:checked label,
button.suggested-action:backdrop:disabled:active label,
color: rgba(74, 144, 217, 0.8); }
button.suggested-action:disabled {
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.suggested-action {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(74, 144, 217, 0.5), rgba(74, 144, 217, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(74, 144, 217, 0.5));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.suggested-action:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(74, 144, 217, 0.7), rgba(74, 144, 217, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(74, 144, 217, 0.7));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.suggested-action:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, #4a90d9, #4a90d9);
+ background-color: transparent;
+ background-image: image(#4a90d9);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.suggested-action:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.suggested-action:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(74, 144, 217, 0.5), rgba(74, 144, 217, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(74, 144, 217, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: white;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #a60c0c;
- background-image: linear-gradient(to bottom, #df1111, #df1111);
+ background-image: none;
+ background-color: #df1111;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
button.destructive-action:backdrop,
button.destructive-action.flat:backdrop {
border-color: #ef2929;
- background-image: linear-gradient(to bottom, #ef2929, #ef2929);
+ background-color: #ef2929;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action.flat:backdrop:active,
button.destructive-action.flat:backdrop:checked {
border-color: #d51010;
- background-image: linear-gradient(to bottom, #d51010, #d51010);
+ background-color: #d51010;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action:backdrop:active label,
button.destructive-action:backdrop:active,
button.destructive-action:backdrop:disabled,
button.destructive-action.flat:backdrop:disabled {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action.flat:backdrop:disabled:active,
button.destructive-action.flat:backdrop:disabled:checked {
border-color: #ef3131;
- background-image: linear-gradient(to bottom, #ef3131, #ef3131);
+ background-color: #ef3131;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action:backdrop:disabled:active label,
button.destructive-action:backdrop:disabled:checked label,
color: rgba(239, 41, 41, 0.8); }
button.destructive-action:disabled {
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
button.destructive-action {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(239, 41, 41, 0.5), rgba(239, 41, 41, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(239, 41, 41, 0.5));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.destructive-action:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(239, 41, 41, 0.7), rgba(239, 41, 41, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(239, 41, 41, 0.7));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
button.destructive-action:checked {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, #ef2929, #ef2929);
+ background-color: transparent;
+ background-image: image(#ef2929);
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.destructive-action:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
button.destructive-action:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(239, 41, 41, 0.5), rgba(239, 41, 41, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(239, 41, 41, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: #2e3436;
outline-color: rgba(46, 52, 54, 0.3);
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #d4d4d2, #d4d4d2);
+ background-image: none;
+ background-color: #d4d4d2;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
.inline-toolbar toolbutton > button:disabled {
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #8b8e8f; }
.inline-toolbar toolbutton > button:backdrop {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e8e8e7, #e8e8e7);
+ background-color: #e8e8e7;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #8b8e8f; }
.inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #dadad8, #dadad8);
+ background-color: #dadad8;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.inline-toolbar toolbutton > button:backdrop:active label, .inline-toolbar toolbutton > button:backdrop:active, .inline-toolbar toolbutton > button:backdrop:checked label, .inline-toolbar toolbutton > button:backdrop:checked {
color: #8b8e8f; }
.inline-toolbar toolbutton > button:backdrop:disabled {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #c3c3c0; }
.inline-toolbar toolbutton > button:backdrop:disabled:active, .inline-toolbar toolbutton > button:backdrop:disabled:checked {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e4e4e4, #e4e4e4);
+ background-color: #e4e4e4;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.inline-toolbar toolbutton > button:backdrop:disabled:active label, .inline-toolbar toolbutton > button:backdrop:disabled:checked label {
color: #c3c3c0; }
.osd spinbutton.vertical button:first-child {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
.osd spinbutton.vertical button:first-child:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
.osd spinbutton.vertical button:first-child:active {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
.osd spinbutton.vertical button:first-child:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
.osd spinbutton.vertical button:first-child:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #215d9c;
- background-image: linear-gradient(to bottom, #2b7bcf, #2b7bcf);
+ background-image: none;
+ background-color: #2b7bcf;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
headerbar.selection-mode button:backdrop.flat,
headerbar.selection-mode button:backdrop {
border-color: #4a90d9;
- background-image: linear-gradient(to bottom, #4a90d9, #4a90d9);
+ background-color: #4a90d9;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
headerbar.selection-mode button:backdrop:active,
headerbar.selection-mode button:backdrop:checked {
border-color: #2a76c6;
- background-image: linear-gradient(to bottom, #2a76c6, #2a76c6);
+ background-color: #2a76c6;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
border-color: #184472; }
.selection-mode.titlebar:not(headerbar) button:backdrop.flat:active label, .selection-mode.titlebar:not(headerbar) button:backdrop.flat:active, .selection-mode.titlebar:not(headerbar) button:backdrop.flat:checked label, .selection-mode.titlebar:not(headerbar) button:backdrop.flat:checked, .selection-mode.titlebar:not(headerbar) button:backdrop:active label, .selection-mode.titlebar:not(headerbar) button:backdrop:active, .selection-mode.titlebar:not(headerbar) button:backdrop:checked label, .selection-mode.titlebar:not(headerbar) button:backdrop:checked,
headerbar.selection-mode button:backdrop.flat:disabled,
headerbar.selection-mode button:backdrop:disabled {
border-color: #65a1df;
- background-image: linear-gradient(to bottom, #65a1df, #65a1df);
+ background-color: #65a1df;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
headerbar.selection-mode button:backdrop:disabled:active,
headerbar.selection-mode button:backdrop:disabled:checked {
border-color: #5094db;
- background-image: linear-gradient(to bottom, #5094db, #5094db);
+ background-color: #5094db;
+ background-image: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
border-color: #184472; }
.selection-mode.titlebar:not(headerbar) button:backdrop.flat:disabled:active label, .selection-mode.titlebar:not(headerbar) button:backdrop.flat:disabled:checked label, .selection-mode.titlebar:not(headerbar) button:backdrop:disabled:active label, .selection-mode.titlebar:not(headerbar) button:backdrop:disabled:checked label,
.selection-mode.titlebar:not(headerbar) button:disabled,
headerbar.selection-mode button:disabled {
border-color: #215d9c;
- background-image: linear-gradient(to bottom, #65a1df, #65a1df);
+ background-color: #65a1df;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #2e3436;
outline-color: rgba(46, 52, 54, 0.3);
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #d4d4d2, #d4d4d2);
+ background-image: none;
+ background-color: #d4d4d2;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none;
.selection-mode.titlebar:not(headerbar) button.suggested-action:disabled,
headerbar.selection-mode button.suggested-action:disabled {
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
.selection-mode.titlebar:not(headerbar) button.suggested-action:backdrop,
headerbar.selection-mode button.suggested-action:backdrop {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e8e8e7, #e8e8e7);
+ background-color: #e8e8e7;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
.selection-mode.titlebar:not(headerbar) button.suggested-action:backdrop:disabled,
headerbar.selection-mode button.suggested-action:backdrop:disabled {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
headerbar.selection-mode .selection-menu:backdrop,
headerbar.selection-mode .selection-menu {
border-color: rgba(74, 144, 217, 0);
- background-image: linear-gradient(to bottom, rgba(74, 144, 217, 0), rgba(74, 144, 217, 0));
+ background-color: rgba(74, 144, 217, 0);
+ background-image: none;
box-shadow: none;
padding-left: 10px;
padding-right: 10px; }
border: 1px solid #184472; }
switch:disabled slider {
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
switch:backdrop slider {
transition: 200ms ease-out;
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e8e8e7, #e8e8e7);
+ background-color: #e8e8e7;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
border-color: #4a90d9; }
switch:backdrop:disabled slider {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #2e3436;
outline-color: rgba(46, 52, 54, 0.3);
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #d4d4d2, #d4d4d2);
+ background-image: none;
+ background-color: #d4d4d2;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
check:disabled,
radio:disabled {
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
check:backdrop,
radio:backdrop {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e8e8e7, #e8e8e7);
+ background-color: #e8e8e7;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
check:backdrop:disabled,
radio:backdrop:disabled {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
radio {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
radio:hover {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
radio:active {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
radio:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
radio:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
border-color: #184472; }
scale slider:disabled {
border-color: #b6b6b3;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
scale slider:backdrop {
transition: 200ms ease-out;
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e8e8e7, #e8e8e7);
+ background-color: #e8e8e7;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
color: #8b8e8f; }
scale slider:backdrop:disabled {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #f1f1f1, #f1f1f1);
+ background-color: #f1f1f1;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.osd scale slider {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
.osd scale slider:hover {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(60, 69, 71, 0.8), rgba(60, 69, 71, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(60, 69, 71, 0.8));
background-clip: padding-box;
box-shadow: inset 0 1px rgba(255, 255, 255, 0.1);
text-shadow: 0 1px black;
-gtk-icon-shadow: 0 1px black;
- outline-color: rgba(238, 238, 236, 0.3); }
+ outline-color: rgba(238, 238, 236, 0.3);
+ background-color: #202526; }
.osd scale slider:active {
color: white;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+ background-color: transparent;
+ background-image: image(rgba(0, 0, 0, 0.7));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
-gtk-icon-shadow: none;
- outline-color: rgba(238, 238, 236, 0.3); }
+ outline-color: rgba(238, 238, 236, 0.3);
+ background-color: #202526; }
.osd scale slider:disabled {
color: #878a89;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(53, 57, 58, 0.5), rgba(53, 57, 58, 0.5));
+ background-color: transparent;
+ background-image: image(rgba(53, 57, 58, 0.5));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
- -gtk-icon-shadow: none; }
+ -gtk-icon-shadow: none;
+ background-color: #202526; }
.osd scale slider:backdrop {
color: #eeeeec;
border-color: rgba(0, 0, 0, 0.7);
- background-image: linear-gradient(to bottom, rgba(32, 37, 38, 0.8), rgba(32, 37, 38, 0.8));
+ background-color: transparent;
+ background-image: image(rgba(32, 37, 38, 0.8));
background-clip: padding-box;
box-shadow: none;
text-shadow: none;
- -gtk-icon-shadow: none; }
+ -gtk-icon-shadow: none;
+ background-color: #202526; }
+ .osd scale slider:backdrop:disabled {
+ background-color: #202526; }
scale value {
color: alpha(currentColor,0.55); }
scale marks {
min-height: 0;
min-width: 0; }
scale.color trough {
- background-image: linear-gradient(to bottom, #b6b6b3, #b6b6b3);
+ background-image: image(#b6b6b3);
background-repeat: no-repeat; }
scale.color.horizontal {
padding: 0 0 15px 0; }
placessidebar row.sidebar-placeholder-row {
padding: 0 8px;
min-height: 2px;
- background-image: linear-gradient(to bottom, #4e9a06, #4e9a06);
+ background-image: image(#4e9a06);
background-clip: content-box; }
placessidebar row.sidebar-new-bookmark-row {
color: #4a90d9; }
-gtk-icon-source: none;
border-style: none;
background-color: transparent;
- background-image: linear-gradient(to bottom, #b6b6b3, #b6b6b3);
+ background-image: image(#b6b6b3);
background-size: 1px 1px; }
paned > separator:selected {
- background-image: linear-gradient(to bottom, #4a90d9, #4a90d9); }
+ background-image: image(#4a90d9); }
paned > separator:backdrop {
- background-image: linear-gradient(to bottom, #c0c0bd, #c0c0bd); }
+ background-image: image(#c0c0bd); }
paned > separator.wide {
min-width: 5px;
min-height: 5px;
background-color: #e8e8e7;
- background-image: linear-gradient(to bottom, #b6b6b3, #b6b6b3), linear-gradient(to bottom, #b6b6b3, #b6b6b3);
+ background-image: image(#b6b6b3), image(#b6b6b3);
background-size: 1px 1px, 1px 1px; }
paned > separator.wide:backdrop {
background-color: #e8e8e7;
- background-image: linear-gradient(to bottom, #c0c0bd, #c0c0bd), linear-gradient(to bottom, #c0c0bd, #c0c0bd); }
+ background-image: image(#c0c0bd), image(#c0c0bd); }
paned.horizontal > separator {
background-repeat: repeat-y; }
paned.horizontal > separator:dir(ltr) {
color: #ffffff;
outline-color: rgba(255, 255, 255, 0.3);
border-color: #215d9c;
- background-image: linear-gradient(to bottom, #2b7bcf, #2b7bcf);
+ background-image: none;
+ background-color: #2b7bcf;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
text-shadow: none;
-gtk-icon-shadow: none; }
.warning button:disabled,
.error button:disabled {
border-color: #215d9c;
- background-image: linear-gradient(to bottom, #65a1df, #65a1df);
+ background-color: #65a1df;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }
.warning button:backdrop,
.error button:backdrop {
border-color: #4a90d9;
- background-image: linear-gradient(to bottom, #4a90d9, #4a90d9);
+ background-color: #4a90d9;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
.warning button:backdrop:disabled,
.error button:backdrop:disabled {
border-color: #65a1df;
- background-image: linear-gradient(to bottom, #65a1df, #65a1df);
+ background-color: #65a1df;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0);
box-shadow: inset 0 1px white; }
colorswatch#add-color-button overlay:backdrop {
border-color: #c0c0bd;
- background-image: linear-gradient(to bottom, #e8e8e7, #e8e8e7);
+ background-color: #e8e8e7;
+ background-image: none;
text-shadow: none;
-gtk-icon-shadow: none;
box-shadow: inset 0 1px rgba(255, 255, 255, 0); }